[PR]

『新妻LOVELY×CATION』を応援しています!
水無瀬の部屋 > Programming > sample > tools > header > toolptrc.h
最終更新日: 2000/06/25

   1: //*********************************************************
   2: // プロジェクト: TOOLS
   3: //  ファイル名: toolptrc.h
   4: //*********************************************************
   5: #ifndef TOOLPTRC_HEAD_INCLUDED // 多重インクルードの防止
   6: #define TOOLPTRC_HEAD_INCLUDED
   7: 
   8: 
   9: //*********************************************************
  10: // コンパイル環境の指定
  11: //*********************************************************
  12: #ifndef PRIVATE_TOOLS_HEAD_INCLUDED // 冗長ガード
  13: #include <header/_tools.h>
  14: #ifndef PRIVATE_TOOLS_HEAD_INCLUDED // ガード名の検査
  15: #error "? PRIVATE_TOOLS_HEAD_INCLUDED"
  16: #endif // #ifndef PRIVATE_TOOLS_HEAD_INCLUDED
  17: #endif // #ifndef PRIVATE_TOOLS_HEAD_INCLUDED
  18: 
  19: 
  20: //*********************************************************
  21: // 関数 の 宣言
  22: //*********************************************************
  23: #ifdef __cplusplus
  24: extern "C" {
  25: #endif
  26: 
  27: 
  28: // toolptrc.cpp
  29: bool CopyPoint( POINT *ptDst, const POINT *ptSrc );
  30: bool IsEqualPoint( const POINT *ptA, const POINT *ptB );
  31: bool MakePoint( POINT *pt, int x, int y ); // bool PointSet( POINT *pt, int nX, int nY );
  32: bool OffsetPoint( POINT *pt, int x, int y );
  33: bool PointIntoRect( POINT *pt, const RECT *rc );
  34: bool GetCenterPoint( POINT *pt, const RECT *rc );
  35: int  GetRectHeight( const RECT *rc );
  36: bool GetRectSize( const RECT *rc, SIZE *size );
  37: int  GetRectWidth( const RECT *rc );
  38: bool IsValidRect( const RECT *rc );
  39: bool MakeSizeRect( RECT *rc, int x, int y, const SIZE *sz );
  40: bool PointOnRect( const RECT *rc, const POINT *pt );
  41: bool ScaleRect( RECT *rcDst, const RECT *rcSrc, int n, int m );
  42: 
  43: 
  44: #ifdef __cplusplus
  45: } // extern "C"
  46: #endif
  47: 
  48: 
  49: #endif // #ifndef TOOLPTRC_HEAD_INCLUDED
  50: 
  51: 
  52: //** end **
  53: 

参照: toolptrc.cpp, tools.h, toolwind.cpp


Google
ご意見・ご感想をお聞かせ下さい。匿名で送信できます。

 * 返信が必要な場合には postmaster@katsura-kotonoha.sakura.ne.jp へ直接メールしてください。

水無瀬の部屋 > sample > tools > header > toolptrc.h

このページは cpp2web が出力しました。
水無瀬 優 postmaster@katsura-kotonoha.sakura.ne.jp
http://katsura-kotonoha.sakura.ne.jp/prog/code/tools/header/toolptrc_h.shtml
『新妻LOVELY×CATION』を応援しています!